home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / te2_134t.zip / TE2INST.001 / ReadMe.TCP < prev    next >
Text File  |  1997-07-03  |  3KB  |  64 lines

  1.                                                    TE/2 Version 1.34
  2.                                                  TCP/IP Support DLLs
  3.                                                         4 July, 1997
  4.  
  5.                                                Oberon Software, Inc.
  6.                                                    1405 East Main St
  7.                                               Mankato, MN 56001-5070
  8.                                                  Voice: 507-388-7001
  9.                                                    Fax: 507-388-7568
  10.                                                    BBS: 507-388-1154
  11.  
  12.  
  13.                       Using the TCP/IP Support DLLS
  14.                       -----------------------------
  15.  
  16. Once you have installed a version of OBTCPIP.DLL onto your system, you
  17. may now use TE/2 to connect with a TCP/IP socket as well as with a COM
  18. port or a Named Pipe.  To accomplish this, you must edit your TE2.INI
  19. and change the "Device" statement.
  20.  
  21. To designate a socket the first seven characters of the Device setting
  22. MUST be "AF_INET" (upper or lower case).  The very next character after
  23. this flag is important in that it defines a delimiter which will be
  24. used in the remainder of the Device designation.  It can be any character
  25. which does not otherwise appear in your HOST or SOCKET name.  A good choice
  26. would be the slash ("/") character.
  27.  
  28. Next is your HOST name or address.  This can be a standard internet
  29. address (123.123.123.123) or a name as defined to your protocol
  30. installation (i.e., in your HOSTS file).  This is followed by the delimiter
  31. again.
  32.  
  33. Next is the socket designation which can be either a simple numeric value
  34. (i.e., 23) or a "well known port" specification as definied in your
  35. SERVICES file (i.e., telnet).  In the latter case, the port name MUST
  36. be followed by another delimiter and the letters "tcp".
  37.  
  38. Several examples will hopefully make this seem less intimidating:
  39.  
  40.            1. AF_INET/server/2000
  41.            2. AF_INET!30.96.92.1!login!tcp
  42.            3. AF_INET,joehost,telnet,tcp
  43.  
  44. Notice that each uses a different delimiter character but each uses that
  45. delimiter consistantly throughout.  #1 uses a slash, #2 uses an exclamation
  46. point, and #3 uses a comma.  #1 and #3 connect to named servers whereas
  47. #2 specifies an internet address for the host.  #1 connects to a socket
  48. with a hardcoded port number and #2 and #3 use "well know ports".
  49.  
  50. TE/2 as a Telnet Client
  51. -----------------------
  52.  
  53. If you are going to be using TE/2 as Client, you should enable the "Telnet"
  54. keyword in TE2.INI when you change the "Device" statement.  Setting
  55. "Telnet" to TRUE will cause TE/2 to perform standard Telnet handshaking
  56. with the server.
  57.  
  58. It has been our experience with the IBM TCP/IP TelnetD Telnet server, that
  59. using VT100 emulation mode in TE/2 results in MUCH better performance
  60. than does ANSI mode due to different screen painting algorithms used by
  61. the server.  Unfortunately one loses color in this situation, even though
  62. TE/2 is fully able to do colors in VT100 mode, because the server does not
  63. assume color capability in VT100s.
  64.